home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / pmode / qfml11 / newtypes.h < prev    next >
C/C++ Source or Header  |  1994-03-22  |  591b  |  18 lines

  1. /****************************************************************************
  2. *                                                    *
  3. *        Definición de algunos tipos para hacer teclear menos.            *
  4. *    También esta la macro para usar etiquetas en inline en C.            *
  5. *                                                    *
  6. *                                                    *
  7. ****************************************************************************/
  8.  
  9. #ifndef __NEWTYPES_H
  10. #define __NEWTYPES_H
  11.  
  12. #define WORD    unsigned int
  13. #define LWORD     unsigned long
  14. #define BYTE    unsigned char
  15. #define POINTER *unsigned char
  16. #define Z(x)    }x:asm{               //Macro para usar labels en asm's
  17.  
  18. #endif